home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / SUBS / FM / MKPAN.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-03-25  |  482 b   |  29 lines

  1.     @echo off
  2. rem
  3. rem build PAN2OP
  4. rem
  5.  
  6.     if not (%debug%)==(ON) goto label05
  7.     @echo on
  8. :label05
  9.  
  10.     if (%1)==()    goto help
  11.     if (%1)==(BCC) goto bcc
  12.     if (%1)==(bcc) goto bcc
  13.  
  14. :msc
  15.     nmake S=S M=1 -f pan2op %3 %4 %5
  16.     goto done
  17.  
  18. :bcc
  19.     make -N S=s M=1 BCC=1 -f pan2op %3 %4 %5
  20.     goto done
  21.  
  22. :help
  23.     echo To Use: DOS\ MKPAN [MSC or BCC]
  24.     echo Where:           MSC specifies Microsoft C
  25.     echo          BCC specifies Borland C
  26.  
  27. :done
  28.  
  29.